4884ae2166d49dddb4b1304971b645d5b8af7d91,applications/content/src/main/java/org/apache/ofbiz/content/content/ContentWorker.java,ContentWorker,renderContentAsTextExt,#LocalDispatcher#Delegator#String#Map#Locale#String#boolean#,111

Before Change



    @Override
    public String renderContentAsTextExt(LocalDispatcher dispatcher, Delegator delegator, String contentId, Map<String, Object> templateContext, Locale locale, String mimeTypeId, boolean cache) throws GeneralException, IOException {
        return renderContentAsText(dispatcher, delegator, contentId, templateContext, locale, mimeTypeId, cache);
    }

    // -------------------------------------

After Change



    // new rendering methods
    @Override
    public void renderContentAsTextExt(LocalDispatcher dispatcher, String contentId, Appendable out, Map<String, Object> templateContext, Locale locale, String mimeTypeId, boolean cache) throws GeneralException, IOException {
        renderContentAsText(dispatcher, contentId, out, templateContext, locale, mimeTypeId, null, null, cache);
    }

    @Override